Skip to content

Commit a914b5e

Browse files
author
kmgx
committed
HPSNR in separate crate
1 parent 60ae85e commit a914b5e

File tree

20 files changed

+840
-59
lines changed

20 files changed

+840
-59
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@
88

99
# These are backup files generated by rustfmt
1010
**/*.rs.bk
11+
12+
13+
#Added by cargo
14+
#
15+
#already existing elements are commented out
16+
17+
/target
18+
#**/*.rs.bk

Arithmetic-Coding/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "Arithmetic-Coding"
3+
version = "0.1.0"
4+
authors = ["kmgx <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]

Arithmetic-Coding/src/main.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)