Nothing to see here, move along meow
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 775 B View raw
1[package] 2name = "lancer-lancerfs" 3version = "0.1.0" 4edition = "2024" 5 6[lib] 7name = "lancer_lancerfs" 8path = "src/lib.rs" 9 10[[bin]] 11name = "lancer-lancerfs" 12path = "src/main.rs" 13 14[[bin]] 15name = "mkfs_host" 16path = "src/bin/mkfs_host.rs" 17required-features = ["host"] 18 19[features] 20default = ["userspace"] 21userspace = ["dep:lancer-user"] 22host = [] 23 24[dependencies] 25lancer-core = { path = "../../lib/lancer-core" } 26lancer-user = { path = "../../lib/lancer-user", optional = true } 27lancer-log = { path = "../../lib/lancer-log" } 28lancer-vfs-proto = { path = "../../lib/lancer-vfs-proto" } 29zerocopy = { version = "0.8", default-features = false, features = ["derive"] } 30xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] } 31 32[dev-dependencies] 33proptest = "1"